home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / par230.zip / EXAMPLE1.INF < prev    next >
Text File  |  1993-01-03  |  923b  |  24 lines

  1. ===============================================================================
  2. ==========================                         ============================
  3. ==========================       EXAMPLE # 1       ============================
  4. ==========================                         ============================
  5. ===============================================================================
  6.  
  7.  
  8. THE INPUT FILE:  "John Doe's List of Things to Do This Week"
  9.  
  10.  
  11. WHAT WE WANT:    Extract from the file only those items that are not yet done.
  12.  
  13.  
  14. HOW WE DO IT:    We ignore any lines that contain a space, X or P in column 2.
  15.                  This gives us what we want because:
  16.  
  17.                  ─  A space is found in column 2 on all descriptive lines.
  18.  
  19.                  ─  An "X"  is found there on items that are "Done"
  20.  
  21.                  ─  A  "P"  is found there on items that are "Postponed"
  22.  
  23.  
  24.